+1998-12-15 Elliot Lee <sopwith@bogus.cuc.ml.org>
+
+ * gdk/gdkevents.c: Use G_IO_ERR|G_IO_HUP|G_IO_NVAL
+ as the mask for checking for GDK_INPUT_EXCEPTION events.
+
1998-12-15 Martin Baulig <martin@home-of-linux.org>
* acinclude.m4: Make the gettext check for for libc5 systems.
+1998-12-15 Elliot Lee <sopwith@bogus.cuc.ml.org>
+
+ * gdk/gdkevents.c: Use G_IO_ERR|G_IO_HUP|G_IO_NVAL
+ as the mask for checking for GDK_INPUT_EXCEPTION events.
+
1998-12-15 Martin Baulig <martin@home-of-linux.org>
* acinclude.m4: Make the gettext check for for libc5 systems.
+1998-12-15 Elliot Lee <sopwith@bogus.cuc.ml.org>
+
+ * gdk/gdkevents.c: Use G_IO_ERR|G_IO_HUP|G_IO_NVAL
+ as the mask for checking for GDK_INPUT_EXCEPTION events.
+
1998-12-15 Martin Baulig <martin@home-of-linux.org>
* acinclude.m4: Make the gettext check for for libc5 systems.
+1998-12-15 Elliot Lee <sopwith@bogus.cuc.ml.org>
+
+ * gdk/gdkevents.c: Use G_IO_ERR|G_IO_HUP|G_IO_NVAL
+ as the mask for checking for GDK_INPUT_EXCEPTION events.
+
1998-12-15 Martin Baulig <martin@home-of-linux.org>
* acinclude.m4: Make the gettext check for for libc5 systems.
+1998-12-15 Elliot Lee <sopwith@bogus.cuc.ml.org>
+
+ * gdk/gdkevents.c: Use G_IO_ERR|G_IO_HUP|G_IO_NVAL
+ as the mask for checking for GDK_INPUT_EXCEPTION events.
+
1998-12-15 Martin Baulig <martin@home-of-linux.org>
* acinclude.m4: Make the gettext check for for libc5 systems.
+1998-12-15 Elliot Lee <sopwith@bogus.cuc.ml.org>
+
+ * gdk/gdkevents.c: Use G_IO_ERR|G_IO_HUP|G_IO_NVAL
+ as the mask for checking for GDK_INPUT_EXCEPTION events.
+
1998-12-15 Martin Baulig <martin@home-of-linux.org>
* acinclude.m4: Make the gettext check for for libc5 systems.
+1998-12-15 Elliot Lee <sopwith@bogus.cuc.ml.org>
+
+ * gdk/gdkevents.c: Use G_IO_ERR|G_IO_HUP|G_IO_NVAL
+ as the mask for checking for GDK_INPUT_EXCEPTION events.
+
1998-12-15 Martin Baulig <martin@home-of-linux.org>
* acinclude.m4: Make the gettext check for for libc5 systems.
cond |= (G_IO_IN | G_IO_PRI);
if (condition & GDK_INPUT_WRITE)
cond |= G_IO_OUT;
- /* The things that correspond to GDK_INPUT_EXCEPTION don't
- * need to be added to events
- */
+ if (condition & GDK_INPUT_EXCEPTION)
+ cond |= G_IO_ERR|G_IO_HUP|G_IO_NVAL;
channel = g_io_channel_unix_new (source);
result = g_io_add_watch_full (channel, 0, cond, gdk_io_invoke,
cond |= (G_IO_IN | G_IO_PRI);
if (condition & GDK_INPUT_WRITE)
cond |= G_IO_OUT;
- /* The things that correspond to GDK_INPUT_EXCEPTION don't
- * need to be added to events
- */
+ if (condition & GDK_INPUT_EXCEPTION)
+ cond |= G_IO_ERR|G_IO_HUP|G_IO_NVAL;
channel = g_io_channel_unix_new (source);
result = g_io_add_watch_full (channel, 0, cond, gdk_io_invoke,